home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / stistics.arc / CUREALL.DOC < prev    next >
Encoding:
Text File  |  1988-07-24  |  2.4 KB  |  56 lines

  1.                                   CUREALL
  2.                        (GENERAL UTILITY STATISTICS)
  3.  
  4. AIM: The program is designed to do all the usual parametric statistics on a 
  5. single series of measurements (maximum = 999).  Output includes:
  6.  
  7.                           Sum of the Data Points     
  8.                             Sum of the Squares   
  9.                                    Mean
  10.                             Standard Deviation         
  11.                                  Variance             
  12.                         Standard Error of the Mean
  13.                          Coefficient of Variation
  14.  
  15.             Confidence Intervals (both 95% and 99%) as follows:
  16.  
  17.     Low End     Midpoint     High End     Total Length     Half Length
  18.  
  19. The  total  and  half length of the confidence  intervals  are  useful  for 
  20. plotting data on graph paper.
  21.  
  22. EXAMPLE:  Here is a group of 10 ages.  The program will calculate the above 
  23. parameters.  
  24.  
  25.                   52  48  46  41  40  37  37  32  26  24
  26.  
  27. The data need not be ranked in any particular order.
  28.  
  29. DATA  FILES:   Note  that the data can be input from a  file.   Create  the 
  30. datafile  in the WordStar non-document mode, using the format shown  below, 
  31. which consists simply of a title followed by the data: 
  32.  
  33.     Test data            <-- Title, up to 65 characters and spaces long
  34.     52                   <-- First data point  (X1)
  35.     48                   <-- Second data point (X2) 
  36.     46                   <-- Third data point  (X3)
  37.     41                   .                       .
  38.     40                   .                       .
  39.     37                   .                       .
  40.     37                   .                       .
  41.     32                   .                       .
  42.     26                   .                       .
  43.     24                   <-- Last data point (in this case, X10)
  44.  
  45. As mentioned previously, there may be 999 data points.
  46.  
  47. REFERENCE:  Goldstein,  A.   1964   Biostatistics:  An  Introductory  Text.  
  48.             Macmillan Company, New York.  Pages 42-49.
  49.  
  50. FORTRAN VERSION: Dr. Stanley Kaplan  May 65
  51. BASIC VERSION:   Dr. Stanley Kaplan  Jul 81 
  52. PASCAL VERSION:  Dr. Stanley Kaplan  May 85
  53. UPDATES:                             Oct 86 (Version 2.00)
  54.                                      Feb 87 (Version 2.10)
  55.                                      Feb 88 (MSDOS, Version 2.2)
  56.